From: Richard M. Stallman Date: Thu, 13 May 1993 03:14:07 +0000 (+0000) Subject: (Setting minor-mode-map-alist): X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~96300 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=4f6e4ad6cdd5717068e16ccaac8da7c123807646;p=emacs.git (Setting minor-mode-map-alist): Put the map directly in the alist, not a variable name. --- diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 1fd7bfdd54f..7bca70da1d8 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -31,7 +31,7 @@ ;;;###autoload (defvar compilation-mode-hook nil - "*List of hook functions run by compilation-mode (see `run-hooks').") + "*List of hook functions run by `compilation-mode' (see `run-hooks').") ;;;###autoload (defconst compilation-window-height nil @@ -336,7 +336,7 @@ Returns the compilation buffer created." (define-key map "\M-{" 'compilation-previous-file) (define-key map "\M-}" 'compilation-next-file) map) - "Keymap for compilation-minor-mode.") + "Keymap for `compilation-minor-mode'.") (defvar compilation-mode-map (let ((map (cons 'keymap compilation-minor-mode-map))) @@ -344,7 +344,7 @@ Returns the compilation buffer created." (define-key map "\^?" 'scroll-down) map) "Keymap for compilation log buffers. -compilation-minor-mode-map is a cdr of this.") +`compilation-minor-mode-map' is a cdr of this.") (defun compilation-mode () "Major mode for compilation log buffers. @@ -380,8 +380,8 @@ Compilation major mode are available.") (setq minor-mode-alist (cons '(compilation-minor-mode " Compilation") minor-mode-alist))) (or (assq 'compilation-minor-mode minor-mode-map-alist) - (setq minor-mode-map-alist (cons '(compilation-minor-mode - . compilation-minor-mode-map) + (setq minor-mode-map-alist (cons (cons 'compilation-minor-mode + compilation-minor-mode-map) minor-mode-map-alist))) (defun compilation-minor-mode (&optional arg) @@ -441,7 +441,7 @@ See `compilation-mode'." (defun compilation-filter (proc string) "Process filter for compilation buffers. -Just inserts the text, but uses insert-before-markers." +Just inserts the text, but uses `insert-before-markers'." (save-excursion (set-buffer (process-buffer proc)) (let ((buffer-read-only nil)) diff --git a/lisp/vc.el b/lisp/vc.el index 3e0f41f7005..6073ebe86df 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -830,7 +830,7 @@ the variable `vc-header-alist'." (or (not (boundp 'minor-mode-map-alist)) (assq 'vc-dired-mode minor-mode-map-alist) (setq minor-mode-map-alist - (cons '(vc-dired-mode . vc-dired-prefix-map) + (cons (cons 'vc-dired-mode vc-dired-prefix-map) minor-mode-map-alist))) (defun vc-dired-mode ()